home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / COMMS / C101.ZIP / UUPC11XT.ZIP / RN / RNLIB.C < prev    next >
C/C++ Source or Header  |  1992-11-21  |  558b  |  38 lines

  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. #include "lib.h"
  7. #include "hlib.h"
  8. #include "version.h"
  9. #include "timestmp.h"
  10.  
  11. char **host_argv;
  12.  
  13.  
  14. int hostinit(int mode)
  15. {
  16.  
  17.    banner(host_argv);
  18.    printf("rn %s \n", RN_VERSION);
  19.  
  20.    if (!configure(B_NEWS))
  21.    {
  22.       return TRUE;           /* Configure failed */
  23.    }
  24.    return FALSE;
  25. }
  26.  
  27.  
  28. void gethostname(char *buf, int bufmax)
  29. {
  30.  
  31.    *buf = '\0';
  32.    if (strlen(E_nodename) < bufmax)
  33.    {
  34.       strcpy(buf, E_nodename);
  35.    }
  36.    return;
  37. }
  38.